二叉树的镜像

二叉树的镜像

题目描述

操作给定的二叉树,将其变换为源二叉树的镜像。

递归。。。

1
2
3
4
5
6
7
8
9
function Mirror(root)
{
// write code here
if(root===null)return;
Mirror(root.left);
Mirror(root.right);
[root.left,root.right]=[root.right,root.left];
return root;
}